home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ssh_scp.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  60 lines

  1. #
  2. # This script was written by Xue Yong Zhi<xueyong@udel.edu>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11339);
  10.  script_bugtraq_id(1742);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CVE-2000-0992");
  13.  
  14.  name["english"] = "scp File Create/Overwrite";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. You are running OpenSSH 1.2.3, or 1.2. 
  19.  
  20. This version has directory traversal vulnerability in scp, it allows
  21. a remote malicious scp server to overwrite arbitrary files via a .. (dot dot) attack.
  22.  
  23. Solution :
  24. Patch and New version are available from SSH/OpenSSH.
  25.  
  26. Risk factor : Medium";
  27.     
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks for the remote SSH version";
  31.  
  32.  script_summary(english:summary["english"]);
  33.  
  34.  script_category(ACT_GATHER_INFO);
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2003 Xue Yong Zhi",
  37.         francais:"Ce script est Copyright (C) 2003 Xue Yong Zhi");
  38.  family["english"] = "Gain a shell remotely";
  39.  script_family(english:family["english"]);
  40.  script_dependencie("ssh_detect.nasl");
  41.  script_require_ports("Services/ssh", 22);
  42.  exit(0);
  43. }
  44.  
  45. #
  46. # The script code starts here
  47. #
  48.  
  49. port = get_kb_item("Services/ssh");
  50. if(!port)port = 22;
  51.  
  52. banner = get_kb_item("SSH/banner/" + port );
  53. if ( ! banner ) exit(0);
  54.  
  55. #Looking for OpenSSH product version number 1.2 and 1.2.3    
  56. if(ereg(pattern:".*openssh[-_](1\.2($|\.3|[^0-9])).*",string:banner, icase:TRUE))security_warning(port);
  57.  
  58. if(ereg(pattern:".*ssh-.*-1\.2\.(1[0-4]|2[0-7])[^0-9]", string:banner, icase:TRUE))security_warning(port);
  59.